home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / ansihead.mak < prev    next >
Text File  |  1997-07-23  |  9KB  |  283 lines

  1. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # makefile for Unix/ANSI C/X11 configuration.
  16.  
  17. #****************************************************************#
  18. #   If you want to change options, DO NOT edit unix-ansi.mak     #
  19. #   or makefile.  Edit ansihead.mak and run the tar_cat script.  #
  20. #****************************************************************#
  21.  
  22. # ------------------------------- Options ------------------------------- #
  23.  
  24. ####### The following are the only parts of the file you should need to edit.
  25.  
  26. # ------ Generic options ------ #
  27.  
  28. # Define the installation commands and target directories for
  29. # executables and files.  The commands are only relevant to `make install';
  30. # the directories also define the default search path for the
  31. # initialization files (gs_*.ps) and the fonts.
  32.  
  33. INSTALL = install -c
  34. INSTALL_PROGRAM = $(INSTALL) -m 755
  35. INSTALL_DATA = $(INSTALL) -m 644
  36.  
  37. prefix = /usr/local
  38. exec_prefix = $(prefix)
  39. bindir = $(exec_prefix)/bin
  40. scriptdir = $(bindir)
  41. mandir = $(prefix)/man
  42. man1ext = 1
  43. man1dir = $(mandir)/man$(man1ext)
  44. datadir = $(prefix)/share
  45. gsdir = $(datadir)/ghostscript
  46. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  47.  
  48. docdir=$(gsdatadir)/doc
  49. exdir=$(gsdatadir)/examples
  50. GS_DOCDIR=$(docdir)
  51.  
  52. # Define the default directory/ies for the runtime initialization and
  53. # font files.  Separate multiple directories with a :.
  54.  
  55. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  56.  
  57. # Define whether or not searching for initialization files should always
  58. # look in the current directory first.  This leads to well-known security
  59. # and confusion problems, but users insist on it.
  60. # NOTE: this also affects searching for files named on the command line:
  61. # see the "File searching" section of use.txt for full details.
  62. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  63.  
  64. SEARCH_HERE_FIRST=1
  65.  
  66. # Define the name of the interpreter initialization file.
  67. # (There is no reason to change this.)
  68.  
  69. GS_INIT=gs_init.ps
  70.  
  71. # Choose generic configuration options.
  72.  
  73. # -DDEBUG
  74. #    includes debugging features (-Z switch) in the code.
  75. #      Code runs substantially slower even if no debugging switches
  76. #      are set.
  77. # -DNOPRIVATE
  78. #    makes private (static) procedures and variables public,
  79. #      so they are visible to the debugger and profiler.
  80. #      No execution time or space penalty.
  81.  
  82. GENOPT=
  83.  
  84. # Define the name of the executable file.
  85.  
  86. GS=gs
  87.  
  88. # Define the directory where the IJG JPEG library sources are stored,
  89. # and the major version of the library that is stored there.
  90. # You may need to change this if the IJG library version changes.
  91. # See jpeg.mak for more information.
  92.  
  93. JSRCDIR=jpeg-6a
  94. JVERSION=6
  95.  
  96. # Define the directory where the PNG library sources are stored,
  97. # and the version of the library that is stored there.
  98. # You may need to change this if the libpng version changes.
  99. # See libpng.mak for more information.
  100.  
  101. PSRCDIR=libpng
  102. PVERSION=96
  103.  
  104. # Choose whether to use a shared version of the PNG library, and if so,
  105. # what its name is.
  106. # See gs.mak and make.txt for more information.
  107.  
  108. SHARE_LIBPNG=0
  109. LIBPNG_NAME=png
  110.  
  111. # Define the directory where the zlib sources are stored.
  112. # See zlib.mak for more information.
  113.  
  114. ZSRCDIR=zlib
  115.  
  116. # Choose whether to use a shared version of the zlib library, and if so,
  117. # what its name is (usually libz, but sometimes libgz).
  118. # See gs.mak and make.txt for more information.
  119.  
  120. SHARE_ZLIB=0
  121. #ZLIB_NAME=gz
  122. ZLIB_NAME=z
  123.  
  124. # Define how to build the library archives.  (These are not used in any
  125. # standard configuration.)
  126.  
  127. AR=ar
  128. ARFLAGS=qc
  129. RANLIB=ranlib
  130.  
  131. # Define the configuration ID.  Read gs.mak carefully before changing this.
  132.  
  133. CONFIG=
  134.  
  135. # ------ Platform-specific options ------ #
  136.  
  137. # Define the name of the C compiler.  If the standard compiler for your
  138. # platform is ANSI-compatible, leave this line commented out; if not,
  139. # uncomment the line and insert the proper definition.
  140.  
  141. #CC=some_C_compiler
  142.  
  143. # Define the name of the linker for the final link step.
  144. # Normally this is the same as the C compiler.
  145.  
  146. CCLD=$(CC)
  147.  
  148. # Define the other compilation flags.  Add at most one of the following:
  149. #    -Aa -w -D_HPUX_SOURCE for the HP 400.
  150. #    -DBSD4_2 for 4.2bsd systems.
  151. #    -DSYSV for System V or DG/UX.
  152. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  153. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  154. # XCFLAGS can be set from the command line.
  155. XCFLAGS=
  156.  
  157. CFLAGS=-O $(XCFLAGS)
  158.  
  159. # Define platform flags for ld.
  160. # SunOS and some others want -X; Ultrix wants -x.
  161. # SunOS 4.n may need -Bstatic.
  162. # Apollos running DomainOS don't support -X (and -x has no effect).
  163. # XLDFLAGS can be set from the command line.
  164. XLDFLAGS=
  165.  
  166. LDFLAGS=$(XLDFLAGS)
  167.  
  168. # Define any extra libraries to link into the executable.
  169. # ISC Unix 2.2 wants -linet.
  170. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  171. # SVR4 may need -lnsl.
  172. # (Libraries required by individual drivers are handled automatically.)
  173.  
  174. EXTRALIBS=
  175.  
  176. # Define the include switch(es) for the X11 header files.
  177. # This can be null if handled in some other way (e.g., the files are
  178. # in /usr/include, or the directory is supplied by an environment variable);
  179. # in particular, SCO Xenix, Unix, and ODT just want
  180. #XINCLUDE=
  181. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  182. # not in $(XINCLUDE).
  183.  
  184. XINCLUDE=-I/usr/local/X/include
  185.  
  186. # Define the directory/ies and library names for the X11 library files.
  187. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  188. # (dynamic libraries on SVR4) and should not include -L.
  189. # Both can be null if these files are in the default linker search path;
  190. # in particular, SCO Xenix, Unix, and ODT just want
  191. #XLIBDIRS=
  192. # Solaris and other SVR4 systems with dynamic linking probably want
  193. #XLIBDIRS=-L/usr/openwin/lib
  194. #XLIBDIR=/usr/openwin/lib
  195. # X11R6 (on any platform) may need
  196. #XLIBS=Xt SM ICE Xext X11
  197.  
  198. XLIBDIRS=-L/usr/local/X/lib
  199. XLIBDIR=
  200. XLIBS=Xt Xext X11
  201.  
  202. # Define whether this platform has floating point hardware:
  203. #    FPU_TYPE=2 means floating point is faster than fixed point.
  204. # (This is the case on some RISCs with multiple instruction dispatch.)
  205. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  206. # than fixed point.
  207. #    FPU_TYPE=0 means that floating point may be considerably slower.
  208. #    FPU_TYPE=-1 means that floating point is always much slower than
  209. # fixed point.
  210.  
  211. FPU_TYPE=1
  212.  
  213. # ------ Devices and features ------ #
  214.  
  215. # Choose the language feature(s) to include.  See gs.mak for details.
  216.  
  217. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  218.  
  219. # Choose whether to compile the .ps initialization files into the executable.
  220. # See gs.mak for details.
  221.  
  222. COMPILE_INITS=0
  223.  
  224. # Choose whether to store band lists on files or in memory.
  225. # The choices are 'file' or 'memory'.
  226.  
  227. BAND_LIST_STORAGE=file
  228.  
  229. # Choose which compression method to use when storing band lists in memory.
  230. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  231. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  232.  
  233. BAND_LIST_COMPRESSOR=zlib
  234.  
  235. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  236. # See gs.mak and sfxfd.c for more details.
  237.  
  238. FILE_IMPLEMENTATION=stdio
  239.  
  240. # Choose the device(s) to include.  See devs.mak for details.
  241.  
  242. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11mono.dev
  243. DEVICE_DEVS1=
  244. DEVICE_DEVS2=
  245. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  246. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  247. DEVICE_DEVS5=
  248. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  249. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  250. DEVICE_DEVS8=jpeg.dev jpeggray.dev pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev
  251. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  252. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  253. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  254. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  255. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  256. DEVICE_DEVS14=
  257. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  258.  
  259. # ---------------------------- End of options --------------------------- #
  260.  
  261. # Define the name of the partial makefile that specifies options --
  262. # used in dependencies.
  263.  
  264. MAKEFILE=ansihead.mak
  265.  
  266. # Define the ANSI-to-K&R dependency (none for ANSI compilers).
  267.  
  268. AK=
  269.  
  270. # Define the compilation rules and flags.
  271.  
  272. CCC=$(CC) $(CCFLAGS) -c
  273. CCAUX=$(CC)
  274. CCLEAF=$(CCC)
  275.  
  276. # --------------------------- Generic makefile ---------------------------- #
  277.  
  278. # The remainder of the makefile is generic.
  279. # tar_cat concatenates this makefile with the generic makefiles.
  280.